home *** CD-ROM | disk | FTP | other *** search
/ Oz - The Magical Adventure / Adventure.iso / pc / dkdata / iceclimb.dxr / Internal_44_timer + penguin wave.ls < prev    next >
Encoding:
Text File  |  2000-06-01  |  415 b   |  20 lines

  1. property pTicks
  2.  
  3. on getPropertyDescriptionList
  4.   description = [:]
  5.   addProp(description, #pTicks, [#default: 60, #format: #integer, #comment: "How many ticks to wait?"])
  6.   return description
  7. end
  8.  
  9. on exitFrame
  10.   global gNextMemberList
  11.   if gNextMemberList = EMPTY then
  12.     PlaySeq(70, "wave_l", "fwd", EMPTY)
  13.   end if
  14.   UpdateAnimSprites()
  15.   CheckAtmos()
  16.   if the timer < pTicks then
  17.     go(the frame)
  18.   end if
  19. end
  20.